home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C / Applications / UIFlow 1.0.1 / UIFlow Source / VSet2.0 / Src / Makefile.mac < prev    next >
Encoding:
Makefile  |  1992-04-20  |  2.1 KB  |  46 lines  |  [TEXT/????]

  1. # ##############################################################
  2. # this file is makefile.jason
  3. # HDF Vset 2.0 Makefile for the Macintosh. Jason Ng Dec 1991.
  4. # ##############################################################
  5.  
  6. # assumes that the HDF files libdf.a, df.h and dfi.h are in current directory.
  7.  
  8. # files to compile to make the libvg.a (VSET LIBRARY) - except for the Fortran file vgFf.f
  9. C -d MAC  -d MPW -mc68020 -mc68881 -mbg full -t -r -sym full -opt full vg.c
  10. C -d MAC  -d MPW -mc68020 -mc68881 -mbg full -t -r -sym full -opt full vrw.c
  11. C -d MAC  -d MPW -mc68020 -mc68881 -mbg full -t -r -sym full -opt full vio.c
  12. C -d MAC  -d MPW -mc68020 -mc68881 -mbg full -t -r -sym full -opt full vparse.c
  13. C -d MAC  -d MPW -mc68020 -mc68881 -mbg full -t -r -sym full -opt full vconv.c
  14. C -d MAC  -d MPW -mc68020 -mc68881 -mbg full -t -r -sym full -opt full vsetf.c
  15. C -d MAC  -d MPW -mc68020 -mc68881 -mbg full -t -r -sym full -opt full vgp.c
  16. C -d MAC  -d MPW -mc68020 -mc68881 -mbg full -t -r -sym full -opt full vhi.c
  17. C -d MAC  -d MPW -mc68020 -mc68881 -mbg full -t -r -sym full -opt full vgF.c
  18.  
  19.  
  20. # archiving call to make the VSET library libvg.a
  21. lib -sym full -d -o libvg.a vg.c.o vrw.c.o vio.c.o vparse.c.o  vconv.c.o vsetf.c.o vgp.c.o  vhi.c.o vgF.c.o 
  22.  
  23. # compile and make the utility vmake.
  24.     C -d MAC  -d MPW -mc68020 -mc68881 -mbg full -t -r -sym full -opt full vmake.c
  25.     Link -d -c '????' -t APPL 6
  26.         "{CLibraries}"StdClib.o "{MPW}"Libraries:Libraries:SIOW.o 6
  27.         "{Libraries}"Runtime.o "{Libraries}"Interface.o  6
  28.         libdf.a  libvg.a  vmake.c.o 6
  29.         -o vmake
  30.         
  31. # compile and make the utility vshow.
  32.     C -d MAC  -d MPW -mc68020 -mc68881 -mbg full -t -r -sym full -opt full vshow.c
  33.     Link -d -c '????' -t APPL 6
  34.         "{CLibraries}"StdClib.o "{MPW}"Libraries:Libraries:SIOW.o 6
  35.         "{Libraries}"Runtime.o "{Libraries}"Interface.o  6
  36.         libdf.a  libvg.a  vshow.c.o 6
  37.         -o vshow
  38.         
  39. # compile and make the sample vset test file vtest1
  40.     C -d MAC  -d MPW -mc68020 -mc68881 -mbg full -t -r -sym full -opt full vtest1.c
  41.     Link -d -c '????' -t APPL 6
  42.         "{CLibraries}"StdClib.o "{MPW}"Libraries:Libraries:SIOW.o 6
  43.         "{Libraries}"Runtime.o "{Libraries}"Interface.o  6
  44.         libdf.a  libvg.a  vtest1.c.o 6
  45.         -o vtest1
  46.